home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / man / cat.1 / cvs.1 < prev    next >
Text File  |  1995-07-25  |  80KB  |  1,717 lines

  1.  
  2.  
  3.  
  4. CVS(1)                                                     CVS(1)
  5.  
  6.  
  7. NNAAMMEE
  8.        cvs - Concurrent Versions System
  9.  
  10. SSYYNNOOPPSSIISS
  11.        ccvvss [ _c_v_s___o_p_t_i_o_n_s ]
  12.               _c_v_s___c_o_m_m_a_n_d [ _c_o_m_m_a_n_d___o_p_t_i_o_n_s ] [ _c_o_m_m_a_n_d___a_r_g_s ]
  13.  
  14. DDEESSCCRRIIPPTTIIOONN
  15.        ccvvss  is  a front end to the rrccss(11) revision control system
  16.        which extends the notion of revision control from  a  col-
  17.        lection  of  files in a single directory to a hierarchical
  18.        collection of  directories  consisting  of  revision  con-
  19.        trolled  files.   These  directories and files can be com-
  20.        bined together to form a software release.   ccvvss  provides
  21.        the  functions necessary to manage these software releases
  22.        and to control the  concurrent  editing  of  source  files
  23.        among multiple software developers.
  24.  
  25.        ccvvss  keeps a single copy of the master sources.  This copy
  26.        is called the source ``repository''; it contains  all  the
  27.        information   to   permit   extracting  previous  software
  28.        releases at any time based on either a  symbolic  revision
  29.        tag, or a date in the past.
  30.  
  31. EESSSSEENNTTIIAALL CCOOMMMMAANNDDSS
  32.        ccvvss  provides  a  rich variety of commands (_c_v_s___c_o_m_m_a_n_d in
  33.        the Synopsis),  each  of  which  often  has  a  wealth  of
  34.        options, to satisfy the many needs of source management in
  35.        distributed environments.  However, you don't have to mas-
  36.        ter every detail to do useful work with ccvvss; in fact, five
  37.        commands are sufficient to use  (and  contribute  to)  the
  38.        source repository.
  39.  
  40.        ccvvss cchheecckkoouutt _m_o_d_u_l_e_s...
  41.               A  necessary preliminary for most ccvvss work: creates
  42.               your private copy of the source for _m_o_d_u_l_e_s  (named
  43.               collections of source; you can also use a path rel-
  44.               ative to the source repository here).  You can work
  45.               with  this  copy  without  interfering with others'
  46.               work.  At least one subdirectory  level  is  always
  47.               created.
  48.  
  49.        ccvvss uuppddaattee
  50.               Execute  this  command  from  _w_i_t_h_i_n  your  private
  51.               source directory  when  you  wish  to  update  your
  52.               copies  of  source  files  from  changes that other
  53.               developers have made to the source in  the  reposi-
  54.               tory.
  55.  
  56.        ccvvss aadddd _f_i_l_e...
  57.               Use this command to enroll new files in ccvvss records
  58.               of your working directory.  The files will be added
  59.               to  the  repository  the  next  time  you  run `ccvvss
  60.               ccoommmmiitt'.  Note: You should  use  the  `ccvvss  iimmppoorrtt'
  61.  
  62.  
  63.  
  64.                              03:05:16                           1
  65.  
  66.  
  67.  
  68.  
  69.  
  70. CVS(1)                                                     CVS(1)
  71.  
  72.  
  73.               command  to  bootstrap  new sources into the source
  74.               repository.  `ccvvss aadddd' is only used for  new  files
  75.               to an already checked-out module.
  76.  
  77.        ccvvss rreemmoovvee _f_i_l_e...
  78.               Use  this  command (after erasing any files listed)
  79.               to declare that you wish to  eliminate  files  from
  80.               the repository.  The removal does not affect others
  81.               until you run `ccvvss ccoommmmiitt'.
  82.  
  83.        ccvvss ccoommmmiitt _f_i_l_e...
  84.               Use this command when you wish to ``publish''  your
  85.               changes  to other developers, by incorporating them
  86.               in the source repository.
  87.  
  88. OOPPTTIIOONNSS
  89.        The ccvvss command line can include _c_v_s___o_p_t_i_o_n_s, which  apply
  90.        to the overall ccvvss program; a _c_v_s___c_o_m_m_a_n_d, which specifies
  91.        a particular action on the  source  repository;  and  _c_o_m_-
  92.        _m_a_n_d___o_p_t_i_o_n_s  and  _c_o_m_m_a_n_d___a_r_g_u_m_e_n_t_s to fully specify what
  93.        the _c_v_s___c_o_m_m_a_n_d will do.
  94.  
  95.        _W_a_r_n_i_n_g_: you must be careful of precisely where you  place
  96.        options  relative to the _c_v_s___c_o_m_m_a_n_d.  The same option can
  97.        mean different things depending on whether it  is  in  the
  98.        _c_v_s___o_p_t_i_o_n_s  position (to the left of a ccvvss command) or in
  99.        the _c_o_m_m_a_n_d___o_p_t_i_o_n_s position (to the right of a  ccvvss  com-
  100.        mand).
  101.  
  102.        There   are   only  two  situations  where  you  may  omit
  103.        _c_v_s___c_o_m_m_a_n_d: `ccvvss --HH' elicits a  list  of  available  com-
  104.        mands,  and  `ccvvss --vv ' displays version information on ccvvss
  105.        itself.
  106.  
  107.  
  108. CCVVSS OOPPTTIIOONNSS
  109.        Use these options to control the overall ccvvss program:
  110.  
  111.        --HH     Display  usage  information  about  the   specified
  112.               _c_v_s___c_o_m_m_a_n_d  (but  do not actually execute the com-
  113.               mand).  If you don't specify a command  name,  `ccvvss
  114.               --HH'  displays  a summary of all the commands avail-
  115.               able.
  116.  
  117.        --QQ     Causes the command to be _r_e_a_l_l_y quiet; the  command
  118.               will generate output only for serious problems.
  119.  
  120.        --qq     Causes  the  command to be somewhat quiet; informa-
  121.               tional  messages,  such  as  reports  of  recursion
  122.               through subdirectories, are suppressed.
  123.  
  124.        --bb _b_i_n_d_i_r
  125.               Use  _b_i_n_d_i_r as the directory where RCS programs are
  126.               located.   Overrides  the  setting  of  the  RCSBIN
  127.  
  128.  
  129.  
  130.                              03:05:16                           2
  131.  
  132.  
  133.  
  134.  
  135.  
  136. CVS(1)                                                     CVS(1)
  137.  
  138.  
  139.               environment  variable.  This value should be speci-
  140.               fied as an absolute pathname.
  141.  
  142.        --dd _C_V_S___r_o_o_t___d_i_r_e_c_t_o_r_y
  143.               Use _C_V_S___r_o_o_t___d_i_r_e_c_t_o_r_y as the root directory  path-
  144.               name  of  the  master RCS source repository.  Over-
  145.               rides the setting of the CVSROOT environment  vari-
  146.               able.   This  value should be specified as an abso-
  147.               lute pathname.
  148.  
  149.        --ee _e_d_i_t_o_r
  150.               Use  _e_d_i_t_o_r  to  enter  revision  log  information.
  151.               Overrides  the  setting  of  the EDITOR environment
  152.               variable.
  153.  
  154.        --ll     Do not log the _c_v_s___c_o_m_m_a_n_d in the  command  history
  155.               (but  execute  it  anyway).  See the description of
  156.               the hhiissttoorryy command for information on command his-
  157.               tory.
  158.  
  159.        --nn     Do  not  change  any files.  Attempt to execute the
  160.               _c_v_s___c_o_m_m_a_n_d, but only  to  issue  reports;  do  not
  161.               remove,  update,  or  merge  any existing files, or
  162.               create any new files.
  163.  
  164.        --tt     Trace program execution; display  messages  showing
  165.               the  steps  of  ccvvss  activity.  Particularly useful
  166.               with --nn to explore the potential impact of an unfa-
  167.               miliar command.
  168.  
  169.        --rr     Makes  new  working  files  files  read-only.  Same
  170.               effect as if the CVSREAD  environment  variable  is
  171.               set.
  172.  
  173.        --vv     Displays version and copyright information for ccvvss.
  174.  
  175.        --ww     Makes  new  working  files  read-write   (default).
  176.               Overrides  the  setting  of the CVSREAD environment
  177.               variable.
  178.  
  179. UUSSAAGGEE
  180.        Except when requesting general help  with  `ccvvss  --HH',  you
  181.        must  specify  a  _c_v_s___c_o_m_m_a_n_d  to ccvvss to select a specific
  182.        release control function to  perform.   Each  ccvvss  command
  183.        accepts its own collection of options and arguments.  How-
  184.        ever, many options are available across several  commands.
  185.        You can display a usage summary for each command by speci-
  186.        fying the --HH option with the command.
  187.  
  188. CCVVSS CCOOMMMMAANNDD SSUUMMMMAARRYY
  189.        Here are brief descriptions of all the ccvvss commands:
  190.  
  191.        aadddd    Add a new file  or  directory  to  the  repository,
  192.               pending  a `ccvvss ccoommmmiitt' on the same file.  Can only
  193.  
  194.  
  195.  
  196.                              03:05:16                           3
  197.  
  198.  
  199.  
  200.  
  201.  
  202. CVS(1)                                                     CVS(1)
  203.  
  204.  
  205.               be done from within sources created by  a  previous
  206.               `ccvvss  cchheecckkoouutt'  invocation.   Use  `ccvvss iimmppoorrtt' to
  207.               place whole new hierarchies of  sources  under  ccvvss
  208.               control.   (Does  not  directly  affect repository;
  209.               changes working directory.)
  210.  
  211.        aaddmmiinn  Execute RCS control functions on the source reposi-
  212.               tory.   (Changes  repository directly; uses working
  213.               directory without changing it.)
  214.  
  215.        cchheecckkoouutt
  216.               Make a working directory of source files for  edit-
  217.               ing.  (Creates or changes working directory.)
  218.  
  219.        ccoommmmiitt Apply  to the source repository changes, additions,
  220.               and  deletions   from   your   working   directory.
  221.               (Changes repository.)
  222.  
  223.        ddiiffff   Show differences between files in working directory
  224.               and source repository, or between two revisions  in
  225.               source repository.  (Does not change either reposi-
  226.               tory or working directory.)
  227.  
  228.        eexxppoorrtt Prepare copies of a set of source files  for  ship-
  229.               ment off site.  Differs from `ccvvss cchheecckkoouutt' in that
  230.               no ccvvss administrative directories are created  (and
  231.               therefore  `ccvvss  ccoommmmiitt'  cannot be executed from a
  232.               directory prepared with `ccvvss eexxppoorrtt'), and  a  sym-
  233.               bolic  tag  must  be  specified.   (Does not change
  234.               repository; creates directory  similar  to  working
  235.               directories).
  236.  
  237.        hhiissttoorryy
  238.               Show  reports  on  ccvvss  commands that you or others
  239.               have executed on a particular file or directory  in
  240.               the source repository.  (Does not change repository
  241.               or working directory.)  History logs are kept  only
  242.               if      enabled      by     creation     of     the
  243.               `$$CCVVSSRROOOOTT//CCVVSSRROOOOTT//hhiissttoorryy' file; see ccvvss(55).
  244.  
  245.        iimmppoorrtt Incorporate a set of updates from off-site into the
  246.               source   repository,   as   a   ``vendor  branch''.
  247.               (Changes repository.)
  248.  
  249.        lloogg    Display RCS  log  information.   (Does  not  change
  250.               repository or working directory.)
  251.  
  252.        rrddiiffff  Prepare  a  collection  of  diffs  as  a patch file
  253.               between two releases in the repository.  (Does  not
  254.               change repository or working directory.)
  255.  
  256.        rreelleeaassee
  257.               Cancel  a  `ccvvss  cchheecckkoouutt', abandoning any changes.
  258.               (Can  delete  working  directory;  no   effect   on
  259.  
  260.  
  261.  
  262.                              03:05:16                           4
  263.  
  264.  
  265.  
  266.  
  267.  
  268. CVS(1)                                                     CVS(1)
  269.  
  270.  
  271.               repository.)
  272.  
  273.        rreemmoovvee Remove  files from the source repository, pending a
  274.               `ccvvss ccoommmmiitt' on the same files.  (Does not directly
  275.               affect repository; changes working directory.)
  276.  
  277.        rrttaagg   Explicitly  specify  a  symbolic tag for particular
  278.               revisions of files in the source  repository.   See
  279.               also `ccvvss ttaagg'.  (Changes repository directly; does
  280.               not require or affect working directory.)
  281.  
  282.        ssttaattuuss Show current status of files: latest version,  ver-
  283.               sion  in working directory, whether working version
  284.               has been edited and, optionally, symbolic  tags  in
  285.               the RCS file.  (Does not change repository or work-
  286.               ing directory.)
  287.  
  288.        ttaagg    Specify a symbolic tag for files in the repository.
  289.               Tags the revisions that were last synchronized with
  290.               your  working  directory.     (Changes   repository
  291.               directly;  uses  working directory without changing
  292.               it.)
  293.  
  294.        uuppddaattee Bring  your  working  directory  up  to  date  with
  295.               changes  from the repository.  Merges are performed
  296.               automatically when possible; a warning is issued if
  297.               manual   resolution  is  required  for  conflicting
  298.               changes.   (Changes  working  directory;  does  not
  299.               change repository.)
  300.  
  301. CCOOMMMMOONN CCOOMMMMAANNDD OOPPTTIIOONNSS
  302.        This section describes the _c_o_m_m_a_n_d___o_p_t_i_o_n_s that are avail-
  303.        able across several ccvvss commands.  Not all  commands  sup-
  304.        port  all  of these options; each option is only supported
  305.        for commands where it makes sense.  However, when  a  com-
  306.        mand  has  one  of these options you can count on the same
  307.        meaning for the option as in other commands.  (Other  com-
  308.        mand  options,  which  are listed with the individual com-
  309.        mands, may have different meanings from one ccvvss command to
  310.        another.)   _W_a_r_n_i_n_g_:  the hhiissttoorryy command is an exception;
  311.        it supports many options that  conflict  even  with  these
  312.        standard options.
  313.  
  314.        --DD _d_a_t_e___s_p_e_c
  315.               Use   the   most  recent  revision  no  later  than
  316.               _d_a_t_e___s_p_e_c  (a  single  argument,  date  description
  317.               specifying  a date in the past).  A wide variety of
  318.               date formats are supported by  the  underlying  RCS
  319.               facilities,  similar  to  those described in ccoo(11),
  320.               but not exactly the same.  The _d_a_t_e___s_p_e_c is  inter-
  321.               preted  as  being  in  the local timezone, unless a
  322.               specific timezone is specified.  The  specification
  323.               is  ``sticky''  when  you  use it to make a private
  324.               copy of a source file; that  is,  when  you  get  a
  325.  
  326.  
  327.  
  328.                              03:05:16                           5
  329.  
  330.  
  331.  
  332.  
  333.  
  334. CVS(1)                                                     CVS(1)
  335.  
  336.  
  337.               working  file  using  --DD,  ccvvss records the date you
  338.               specified, so that  further  updates  in  the  same
  339.               directory  will  use  the  same  date  (unless  you
  340.               explicitly override it; see the description of  the
  341.               uuppddaattee  command).   --DD is available with the cchheecckk--
  342.               oouutt,  ddiiffff,,,  hhiissttoorryy,  eexxppoorrtt,  rrddiiffff,  rrttaagg,  and
  343.               uuppddaattee commands.  Examples of valid date specifica-
  344.               tions include:
  345.                         11 mmoonntthh aaggoo
  346.                         22 hhoouurrss aaggoo
  347.                         440000000000 sseeccoonnddss aaggoo
  348.                         llaasstt yyeeaarr
  349.                         llaasstt MMoonnddaayy
  350.                         yyeesstteerrddaayy
  351.                         aa ffoorrttnniigghhtt aaggoo
  352.                         33//3311//9922 1100::0000::0077 PPSSTT
  353.                         JJaannuuaarryy 2233,, 11998877 1100::0055ppmm
  354.                         2222::0000 GGMMTT
  355.  
  356.        --ff     When you specify a particular date or  tag  to  ccvvss
  357.               commands,  they  normally  ignore files that do not
  358.               contain the tag (or did not exist on the date) that
  359.               you specified.  Use the --ff option if you want files
  360.               retrieved even when there is no match for  the  tag
  361.               or  date.  (The most recent version is used in this
  362.               situation.)  --ff is available with  these  commands:
  363.               cchheecckkoouutt, eexxppoorrtt, rrddiiffff, rrttaagg, and uuppddaattee.
  364.  
  365.        --HH     Help;  describe the options available for this com-
  366.               mand.  This is the only option  supported  for  _a_l_l
  367.               ccvvss commands.
  368.  
  369.        --kk _k_f_l_a_g
  370.               Alter  the  default RCS processing of keywords; all
  371.               the --kk options described in rrccss(11)  are  available.
  372.               The  --kk option is available with the aadddd, cchheecckkoouutt,
  373.               ddiiffff, rdiff,, aanndd update commands.  Your _k_f_l_a_g spec-
  374.               ification is ``sticky'' when you use it to create a
  375.               private copy of a source file; that  is,  when  you
  376.               use  this  option  with the cchheecckkoouutt or uuppddaattee com-
  377.               mands, ccvvss associates your selected _k_f_l_a_g with  the
  378.               file,  and  continues  to use it with future uuppddaattee
  379.               commands on the same file until you specify  other-
  380.               wise.
  381.  
  382.        --ll     Local;  run  only  in  current  working  directory,
  383.               rather  than  recurring   through   subdirectories.
  384.               Available  with  the  following commands: cchheecckkoouutt,
  385.               ccoommmmiitt, ddiiffff, eexxppoorrtt, rreemmoovvee, rrddiiffff, rrttaagg,  ssttaattuuss,
  386.               ttaagg,  and uuppddaattee.  _W_a_r_n_i_n_g_: this is not the same as
  387.               the overall `ccvvss --ll' option, which you can  specify
  388.               to the _l_e_f_t of a ccvvss command!
  389.  
  390.        --nn     Do  _n_o_t run any cchheecckkoouutt/ccoommmmiitt/ttaagg/uuppddaattee program.
  391.  
  392.  
  393.  
  394.                              03:05:16                           6
  395.  
  396.  
  397.  
  398.  
  399.  
  400. CVS(1)                                                     CVS(1)
  401.  
  402.  
  403.               (A program can be specified to run on each of these
  404.               activities,  in  the  modules database; this option
  405.               bypasses it.)  Available with the cchheecckkoouutt, ccoommmmiitt,
  406.               eexxppoorrtt,  and  rrttaagg  commands.  _W_a_r_n_i_n_g_: this is not
  407.               the same as the overall `ccvvss --nn' option, which  you
  408.               can specify to the _l_e_f_t of a ccvvss command!
  409.  
  410.        --PP     Prune  (remove)  directories  that  are empty after
  411.               being updated, on cchheecckkoouutt, or  uuppddaattee.   Normally,
  412.               an  empty  directory (one that is void of revision-
  413.               controlled files) is  left  alone.   Specifying  --PP
  414.               will cause these directories to be silently removed
  415.               from  your  checked-out  sources.   This  does  not
  416.               remove the directory from the repository, only from
  417.               your checked out copy.  Note that  this  option  is
  418.               implied  by  the  --rr  or --DD options of cchheecckkoouutt and
  419.               eexxppoorrtt.
  420.  
  421.        --pp     Pipe the files retrieved  from  the  repository  to
  422.               standard  output,  rather  than writing them in the
  423.               current directory.  Available with the cchheecckkoouutt and
  424.               uuppddaattee commands.
  425.  
  426.        --QQ     Causes  the command to be _r_e_a_l_l_y quiet; the command
  427.               will generate output  only  for  serious  problems.
  428.               Available  with  the  following commands: cchheecckkoouutt,
  429.               iimmppoorrtt, eexxppoorrtt, rrddiiffff, rrttaagg, ttaagg, and uuppddaattee.
  430.  
  431.        --qq     Causes the command to be somewhat  quiet;  informa-
  432.               tional  messages,  such  as  reports  of  recursion
  433.               through subdirectories, are suppressed.   Available
  434.               with  the  following  commands:  cchheecckkoouutt,  iimmppoorrtt,
  435.               eexxppoorrtt, rrttaagg, ttaagg, and uuppddaattee.
  436.  
  437.        --rr _t_a_g Use the revision  specified  by  the  _t_a_g  argument
  438.               instead  of the default ``head'' revision.  As well
  439.               as arbitrary tags defined with the ttaagg or rrttaagg com-
  440.               mand, two special tags are always available: `HHEEAADD'
  441.               refers to the most recent version available in  the
  442.               repository,  and  `BBAASSEE' refers to the revision you
  443.               last checked out into the  current  working  direc-
  444.               tory.
  445.  
  446.               The  _t_a_g  specification  is ``sticky'' when you use
  447.               this option with `ccvvss cchheecckkoouutt' or `ccvvss uuppddaattee'  to
  448.               make your own copy of a file: ccvvss remembers the _t_a_g
  449.               and continues to use it on future uuppddaattee  commands,
  450.               until  you  specify otherwise.  _t_a_g can be either a
  451.               symbolic or numeric tag, in RCS fashion.   Specify-
  452.               ing the --qq option along with the --rr option is often
  453.               useful, to suppress the warning messages  when  the
  454.               RCS file does not contain the specified tag.  --rr is
  455.               available with the cchheecckkoouutt, ccoommmmiitt, ddiiffff, hhiissttoorryy,
  456.               eexxppoorrtt, rrddiiffff, rrttaagg, and uuppddaattee commands.  _W_a_r_n_i_n_g_:
  457.  
  458.  
  459.  
  460.                              03:05:16                           7
  461.  
  462.  
  463.  
  464.  
  465.  
  466. CVS(1)                                                     CVS(1)
  467.  
  468.  
  469.               this is not  the  same  as  the  overall  `ccvvss  --rr'
  470.               option,  which you can specify to the _l_e_f_t of a ccvvss
  471.               command!
  472.  
  473. CCVVSS CCOOMMMMAANNDDSS
  474.        Here (finally) are details on all the ccvvss commands and the
  475.        options  each  accepts.   The  summary lines at the top of
  476.        each  command's  description  highlight  three  kinds   of
  477.        things:
  478.  
  479.            Command Options and Arguments
  480.                  Special  options  are described in detail below;
  481.                  common command options may appear  only  in  the
  482.                  summary line.
  483.  
  484.            Working Directory, or Repository?
  485.                  Some ccvvss commands require a working directory to
  486.                  operate; some require a repository.  Also,  some
  487.                  commands  _c_h_a_n_g_e the repository, some change the
  488.                  working directory, and some change nothing.
  489.  
  490.            Synonyms
  491.                  Many commands have synonyms, which you may  find
  492.                  easier  to remember (or type) than the principal
  493.                  name.
  494.  
  495.  
  496.        aadddd [--kk _k_f_l_a_g] [--mm ''_m_e_s_s_a_g_e''] _f_i_l_e_s_._._.
  497.               _R_e_q_u_i_r_e_s_: repository, working directory.
  498.               _C_h_a_n_g_e_s_: working directory.
  499.               _S_y_n_o_n_y_m_: nneeww
  500.               Use the aadddd command to create a new file or  direc-
  501.               tory  in  the  RCS source repository.  The files or
  502.               directories specified with aadddd must  already  exist
  503.               in the current directory (which must have been cre-
  504.               ated with the cchheecckkoouutt command).  To  add  a  whole
  505.               new  directory  hierarchy  to the source repository
  506.               (for example, files  received  from  a  third-party
  507.               vendor), use the `ccvvss iimmppoorrtt' command instead.
  508.  
  509.               If the argument to `ccvvss aadddd' refers to an immediate
  510.               sub-directory, the directory is created at the cor-
  511.               rect  place  in  the RCS source repository, and the
  512.               necessary ccvvss administration files are  created  in
  513.               your  working  directory.  If the directory already
  514.               exists in the source repository,  `ccvvss  aadddd'  still
  515.               creates the administration files in your version of
  516.               the directory.  This allows you to use `ccvvss aadddd' to
  517.               add  a particular directory to your private sources
  518.               even if someone else created that  directory  after
  519.               your  cchheecckkoouutt of the sources.  You can do the fol-
  520.               lowing:
  521.  
  522.                         eexxaammppllee%% mmkkddiirr nneeww__ddiirreeccttoorryy
  523.  
  524.  
  525.  
  526.                              03:05:16                           8
  527.  
  528.  
  529.  
  530.  
  531.  
  532. CVS(1)                                                     CVS(1)
  533.  
  534.  
  535.                         eexxaammppllee%% ccvvss aadddd nneeww__ddiirreeccttoorryy
  536.                         eexxaammppllee%% ccvvss uuppddaattee nneeww__ddiirreeccttoorryy
  537.  
  538.               An alternate approach using `ccvvss uuppddaattee' might be:
  539.  
  540.                         eexxaammppllee%% ccvvss uuppddaattee --dd nneeww__ddiirreeccttoorryy
  541.  
  542.               (To add _a_n_y _a_v_a_i_l_a_b_l_e new directories to your work-
  543.               ing  directory,  it's  probably simpler to use `ccvvss
  544.               cchheecckkoouutt' or `ccvvss uuppddaattee --dd'.)
  545.  
  546.               The added files are not placed in  the  RCS  source
  547.               repository  until  you use `ccvvss ccoommmmiitt' to make the
  548.               change permanent.  Doing a `ccvvss aadddd' on a file that
  549.               was removed with the `ccvvss rreemmoovvee' command will res-
  550.               urrect the file, if no `ccvvss ccoommmmiitt' command  inter-
  551.               vened.
  552.  
  553.               You  will have the opportunity to specify a logging
  554.               message, as usual, when you  use  `ccvvss  ccoommmmiitt'  to
  555.               make the new file permanent.  If you'd like to have
  556.               another logging message associated with  just  _c_r_e_-
  557.               _a_t_i_o_n  of  the  file  (for example, to describe the
  558.               file's purpose), you can specify it  with  the  `--mm
  559.               _m_e_s_s_a_g_e' option to the aadddd command.
  560.  
  561.               The  `--kk  kkffllaagg'  option  specifies the default way
  562.               that this file will be checked  out.   The  `kkffllaagg'
  563.               argument  is  stored  in  the  RCS  file and can be
  564.               changed with `ccvvss aaddmmiinn'.  Specifying `--kkoo' is use-
  565.               ful  for  checking  in binaries that shouldn't have
  566.               the RCS id strings expanded.
  567.  
  568.        aaddmmiinn [_r_c_s_-_o_p_t_i_o_n_s] _f_i_l_e_s_._._.
  569.               _R_e_q_u_i_r_e_s_: repository, working directory.
  570.               _C_h_a_n_g_e_s_: repository.
  571.               _S_y_n_o_n_y_m_: rrccss
  572.               This is the ccvvss interface to  assorted  administra-
  573.               tive  RCS  facilities,  documented in rrccss(11).  `ccvvss
  574.               aaddmmiinn' simply passes all its options and  arguments
  575.               to  the  rrccss command; it does no filtering or other
  576.               processing.  This command  does  work  recursively,
  577.               however, so extreme care should be used.
  578.  
  579.        cchheecckkoouutt [ooppttiioonnss] _m_o_d_u_l_e_s...
  580.               _R_e_q_u_i_r_e_s_: repository.
  581.               _C_h_a_n_g_e_s_: working directory.
  582.               _S_y_n_o_n_y_m_s_: ccoo, ggeett
  583.               Make  a  working directory containing copies of the
  584.               source files specified by _m_o_d_u_l_e_s.  You  must  exe-
  585.               cute  `ccvvss cchheecckkoouutt' before using most of the other
  586.               ccvvss commands, since most of them  operate  on  your
  587.               working directory.
  588.  
  589.  
  590.  
  591.  
  592.                              03:05:16                           9
  593.  
  594.  
  595.  
  596.  
  597.  
  598. CVS(1)                                                     CVS(1)
  599.  
  600.  
  601.               _m_o_d_u_l_e_s   are  either  symbolic  names  (themselves
  602.               defined as  the  module  `mmoodduulleess'  in  the  source
  603.               repository;  see  ccvvss(55))  for  some  collection of
  604.               source directories and files, or paths to  directo-
  605.               ries or files in the repository.
  606.  
  607.               Depending  on the _m_o_d_u_l_e_s you specify, cchheecckkoouutt may
  608.               recursively create directories  and  populate  them
  609.               with  the  appropriate  source files.  You can then
  610.               edit these source files at any time (regardless  of
  611.               whether other software developers are editing their
  612.               own copies of the sources); update them to  include
  613.               new changes applied by others to the source reposi-
  614.               tory; or commit your work as a permanent change  to
  615.               the RCS repository.
  616.  
  617.               Note  that  cchheecckkoouutt is used to create directories.
  618.               The top-level directory created is always added  to
  619.               the  directory  where cchheecckkoouutt is invoked, and usu-
  620.               ally has the same name as the specified _m_o_d_u_l_e.  In
  621.               the  case  of  a  _m_o_d_u_l_e  alias,  the  created sub-
  622.               directory may have a different name, but you can be
  623.               sure  that  it  will  be  a sub-directory, and that
  624.               cchheecckkoouutt will show the  relative  path  leading  to
  625.               each file as it is extracted into your private work
  626.               area (unless you specify the --QQ option).
  627.  
  628.               Running `ccvvss cchheecckkoouutt'  on  a  directory  that  was
  629.               already  built  by a prior cchheecckkoouutt is also permit-
  630.               ted, and has the same effect as specifying  the  --dd
  631.               option to the uuppddaattee command described below.
  632.  
  633.               The  _o_p_t_i_o_n_s  permitted with `ccvvss cchheecckkoouutt' include
  634.               the standard command options --PP, --QQ, --ff, --kk _k_f_l_a_g ,
  635.               --ll, --nn, --pp, --qq, --rr _t_a_g, and --DD _d_a_t_e.
  636.  
  637.               In  addition  to  those,  you can use these special
  638.               command options with cchheecckkoouutt:
  639.  
  640.               Use the --AA option to reset any sticky tags,  dates,
  641.               or  --kk  options.   (If you get a working file using
  642.               one of the --rr, --DD, or --kk options, ccvvss remembers the
  643.               corresponding  tag,  date,  or  _k_f_l_a_g and continues
  644.               using it on future updates; use the  --AA  option  to
  645.               make  ccvvss forget these specifications, and retrieve
  646.               the ``head'' version of the file).
  647.  
  648.               The  --jj  _b_r_a_n_c_h  option  merges  the  changes  made
  649.               between  the  resulting  revision  and the revision
  650.               that it is based on (e.g., if the tag refers  to  a
  651.               branch,  ccvvss  will  merge  all changes made in that
  652.               branch into your working file).
  653.  
  654.               With two --jj options, ccvvss will merge in the  changes
  655.  
  656.  
  657.  
  658.                              03:05:16                          10
  659.  
  660.  
  661.  
  662.  
  663.  
  664. CVS(1)                                                     CVS(1)
  665.  
  666.  
  667.               between  the two respective revisions.  This can be
  668.               used to ``remove'' a certain delta from your  work-
  669.               ing file.
  670.  
  671.               In addition, each --jj option can contain on optional
  672.               date specification which, when used with  branches,
  673.               can  limit the chosen revision to one within a spe-
  674.               cific date.   An  optional  date  is  specified  by
  675.               adding a colon (:) to the tag.  An example might be
  676.               what `ccvvss iimmppoorrtt' tells you to  do  when  you  have
  677.               just  imported  sources  that  have  conflicts with
  678.               local changes:
  679.  
  680.                         eexxaammppllee%% ccvvss cchheecckkoouutt --jjTTAAGG::yyeesstteerrddaayy --jjTTAAGG mmoodduullee
  681.  
  682.               Use the --NN option with `--dd _d_i_r' to avoid shortening
  683.               module  paths  in  your  working directory.   (Nor-
  684.               mally, ccvvss shortens paths as much as possible  when
  685.               you specify an explicit target directory.)
  686.  
  687.               Use  the --cc option to copy the module file, sorted,
  688.               to the standard output, instead of creating or mod-
  689.               ifying  any  files  or  directories in your working
  690.               directory.
  691.  
  692.               Use the --dd _d_i_r option to create a directory  called
  693.               _d_i_r  for  the  working  files, instead of using the
  694.               module name.  Unless you also  use  --NN,  the  paths
  695.               created under _d_i_r will be as short as possible.
  696.  
  697.               Use  the  --ss  option  to  display per-module status
  698.               information stored with the --ss  option  within  the
  699.               modules file.
  700.  
  701.        ccoommmmiitt   [--llnnRR]  [--mm  '_l_o_g___m_e_s_s_a_g_e'  |  --ff  _f_i_l_e]  [--rr
  702.               _r_e_v_i_s_i_o_n] [_f_i_l_e_s_._._.]
  703.               _R_e_q_u_i_r_e_s_: working directory, repository.
  704.               _C_h_a_n_g_e_s_: repository.
  705.               _S_y_n_o_n_y_m_: ccii
  706.               Use  `ccvvss  ccoommmmiitt'  when  you  want  to incorporate
  707.               changes from your working  source  files  into  the
  708.               general source repository.
  709.  
  710.               If  you  don't  specify particular _f_i_l_e_s to commit,
  711.               all of the files in your working current  directory
  712.               are  examined.   ccoommmmiitt is careful to change in the
  713.               repository only those files that  you  have  really
  714.               changed.   By default (or if you explicitly specify
  715.               the --RR option), files in  subdirectories  are  also
  716.               examined  and  committed  if they have changed; you
  717.               can use the --ll option to limit ccoommmmiitt to  the  cur-
  718.               rent directory only.
  719.  
  720.               ccoommmmiitt  verifies  that the selected files are up to
  721.  
  722.  
  723.  
  724.                              03:05:16                          11
  725.  
  726.  
  727.  
  728.  
  729.  
  730. CVS(1)                                                     CVS(1)
  731.  
  732.  
  733.               date with  the  current  revisions  in  the  source
  734.               repository;  it  will  notify you, and exit without
  735.               committing, if any of the specified files  must  be
  736.               made  current first with `ccvvss uuppddaattee'.  ccoommmmiitt does
  737.               not call the uuppddaattee command  for  you,  but  rather
  738.               leaves that for you to do when the time is right.
  739.  
  740.               When all is well, an editor is invoked to allow you
  741.               to enter a log message that will be written to  one
  742.               or  more  logging  programs  and  placed in the RCS
  743.               source repository file.  You  can  instead  specify
  744.               the  log  message  on  the command line with the --mm
  745.               option, thus suppressing the editor invocation,  or
  746.               use the --ff option to specify that the argument _f_i_l_e
  747.               contains the log message.
  748.  
  749.               The --rr option can be used to commit to a particular
  750.               symbolic  or  numeric revision within the RCS file.
  751.               For example, to bring all your files up to the  RCS
  752.               revision  ``3.0''  (including  those  that  haven't
  753.               changed), you might do:
  754.  
  755.                         eexxaammppllee%% ccvvss ccoommmmiitt --rr33..00
  756.  
  757.               ccvvss will only allow you to  commit  to  a  revision
  758.               that is on the main trunk (a revision with a single
  759.               dot).  However, you can also  commit  to  a  branch
  760.               revision (one that has an even number of dots) with
  761.               the --rr option.  To create a  branch  revision,  one
  762.               typically use the --bb ooppttiioonn ooff tthhee rrttaagg or ttaagg com-
  763.               mands.  Then, either cchheecckkoouutt or uuppddaattee can be used
  764.               to  base  your sources on the newly created branch.
  765.               From that point on, all ccoommmmiitt changes made  within
  766.               these  working  sources will be automatically added
  767.               to a branch revision, thereby not perturbing  main-
  768.               line  development  in any way.  For example, if you
  769.               had to create a patch to the  1.2  version  of  the
  770.               product,  even  though  the  2.0 version is already
  771.               under development, you might do:
  772.  
  773.                         eexxaammppllee%% ccvvss rrttaagg --bb --rrFFCCSS11__22 FFCCSS11__22__PPaattcchh pprroodduucctt__mmoodduullee
  774.                         eexxaammppllee%% ccvvss cchheecckkoouutt --rrFFCCSS11__22__PPaattcchh pprroodduucctt__mmoodduullee
  775.                         eexxaammppllee%% ccdd pprroodduucctt__mmoodduullee
  776.                         [[[[ hhaacckk aawwaayy ]]]]
  777.                         eexxaammppllee%% ccvvss ccoommmmiitt
  778.  
  779.               Say you have been working on some extremely experi-
  780.               mental  software,  based  on  whatever revision you
  781.               happened to checkout last week.  If others in  your
  782.               group would like to work on this software with you,
  783.               but without disturbing main-line  development,  you
  784.               could  commit  your change to a new branch.  Others
  785.               can then checkout your experimental stuff and  uti-
  786.               lize  the  full benefit of ccvvss conflict resolution.
  787.  
  788.  
  789.  
  790.                              03:05:16                          12
  791.  
  792.  
  793.  
  794.  
  795.  
  796. CVS(1)                                                     CVS(1)
  797.  
  798.  
  799.               The scenario might look like:
  800.  
  801.                         eexxaammppllee%% ccvvss ttaagg --bb EEXXPPRR11
  802.                         eexxaammppllee%% ccvvss uuppddaattee --rrEEXXPPRR11
  803.                         [[[[ hhaacckk aawwaayy ]]]]
  804.                         eexxaammppllee%% ccvvss ccoommmmiitt
  805.  
  806.               Others  would  simply  do  `ccvvss  cchheecckkoouutt   --rrEEXXPPRR11
  807.               wwhhaatteevveerr__mmoodduullee' to work with you on the experimen-
  808.               tal change.
  809.  
  810.        ddiiffff [--kkll] [_r_c_s_d_i_f_f___o_p_t_i_o_n_s] [[--rr _r_e_v_1 | --DD _d_a_t_e_1] [--rr
  811.               _r_e_v_2 |  --DD _d_a_t_e_2]] [_f_i_l_e_s_._._.]
  812.               _R_e_q_u_i_r_e_s_: working directory, repository.
  813.               _C_h_a_n_g_e_s_: nothing.
  814.               You can compare your working files  with  revisions
  815.               in  the source repository, with the `ccvvss ddiiffff' com-
  816.               mand.  If you don't specify a particular  revision,
  817.               your  files  are  compared  with the revisions they
  818.               were based on.  You can also use the  standard  ccvvss
  819.               command  option --rr to specify a particular revision
  820.               to compare your files with.  Finally, if you use --rr
  821.               twice,  you  can  see differences between two revi-
  822.               sions in the repository.  You can also  specify  --DD
  823.               options  to  diff  against  a revision in the past.
  824.               The --rr and --DD options can be mixed together with at
  825.               most two options ever specified.
  826.  
  827.               See   rrccssddiiffff(11)  for  a  list  of  other  accepted
  828.               options.
  829.  
  830.               If you don't specify any files, ddiiffff  will  display
  831.               differences  for  all  those  files  in the current
  832.               directory (and its subdirectories, unless  you  use
  833.               the standard option --ll) that differ from the corre-
  834.               sponding revision in the  source  repository  (i.e.
  835.               files  that  _y_o_u have changed), or that differ from
  836.               the revision specified.
  837.  
  838.        eexxppoorrtt [-ffllNNnnQQqq] --rr _r_e_v|--DD _d_a_t_e [--dd _d_i_r] _m_o_d_u_l_e...
  839.               _R_e_q_u_i_r_e_s_: repository.
  840.               _C_h_a_n_g_e_s_: current directory.
  841.               This command is a variant of `ccvvss cchheecckkoouutt'; use it
  842.               when you want a copy of the source for _m_o_d_u_l_e with-
  843.               out the ccvvss administrative directories.  For  exam-
  844.               ple,  you  might use `ccvvss eexxppoorrtt' to prepare source
  845.               for shipment off-site.  This command _r_e_q_u_i_r_e_s  that
  846.               you  specify a date or tag (with --DD or --rr), so that
  847.               you can count on reproducing the source you ship to
  848.               others.
  849.  
  850.               The  only  non-standard options are `--dd _d_i_r' (write
  851.               the source into  directory  _d_i_r)  and  `--NN'  (don't
  852.               shorten   module   paths).   These  have  the  same
  853.  
  854.  
  855.  
  856.                              03:05:16                          13
  857.  
  858.  
  859.  
  860.  
  861.  
  862. CVS(1)                                                     CVS(1)
  863.  
  864.  
  865.               meanings as the same options in `ccvvss cchheecckkoouutt'.
  866.  
  867.               The --kkvv option is always set when eexxppoorrtt  is  used.
  868.               This  causes  any  RCS keywords to be expanded such
  869.               that an iimmppoorrtt done at some  other  site  will  not
  870.               lose the keyword revision information.  There is no
  871.               way to override this.
  872.  
  873.        hhiissttoorryy [--_r_e_p_o_r_t] [--_f_l_a_g_s] [--_o_p_t_i_o_n_s _a_r_g_s] [_f_i_l_e_s...]
  874.               _R_e_q_u_i_r_e_s_: the file `$$CCVVSSRROOOOTT//CCVVSSRROOOOTT//hhiissttoorryy'
  875.               _C_h_a_n_g_e_s_: nothing.
  876.               ccvvss keeps a history file that tracks  each  use  of
  877.               the  cchheecckkoouutt,  ccoommmmiitt,  rrttaagg,  uuppddaattee, and rreelleeaassee
  878.               commands.  You can use  `ccvvss  hhiissttoorryy'  to  display
  879.               this information in various formats.
  880.  
  881.               _W_a_r_n_i_n_g_:  `ccvvss  hhiissttoorryy' uses `--ff', `--ll', `--nn', and
  882.               `--pp' in ways that conflict with the descriptions in
  883.               COMMON COMMAND OPTIONS.
  884.  
  885.               Several  options  (shown  above as --_r_e_p_o_r_t) control
  886.               what kind of report is generated:
  887.  
  888.              --cc  Report on each time ccoommmmiitt was used (i.e.,  each
  889.                  time the repository was modified).
  890.  
  891.              --mm _m_o_d_u_l_e
  892.                  Report  on  a particular _m_o_d_u_l_e.  (You can mean-
  893.                  ingfully use --mm more than once  on  the  command
  894.                  line.)
  895.  
  896.              --oo  Report on checked-out modules.
  897.  
  898.              --TT  Report on all tags.
  899.  
  900.              --xx _t_y_p
  901.                  Extract  a particular set of record types _X from
  902.                  the ccvvss history.  The  types  are  indicated  by
  903.                  single  letters, which you may specify in combi-
  904.                  nation.  Certain commands have a  single  record
  905.                  type:  cchheecckkoouutt  (type `O'), rreelleeaassee (type `F'),
  906.                  and rrttaagg (type `T').  One of four  record  types
  907.                  may result from an uuppddaattee: `W', when the working
  908.                  copy of a file is deleted during update (because
  909.                  it  was  gone  from the repository); `U', when a
  910.                  working file was  copied  from  the  repository;
  911.                  `G',  when  a  merge  was  necessary and it suc-
  912.                  ceeded; and 'C', when a merge was necessary  but
  913.                  collisions were detected (requiring manual merg-
  914.                  ing).   Finally,  one  of  three  record   types
  915.                  results  from ccoommmmiitt: `M', when a file was modi-
  916.                  fied; `A', when a file is first added; and  `R',
  917.                  when a file is removed.
  918.  
  919.  
  920.  
  921.  
  922.                              03:05:16                          14
  923.  
  924.  
  925.  
  926.  
  927.  
  928. CVS(1)                                                     CVS(1)
  929.  
  930.  
  931.              --ee  Everything  (all  record  types);  equivalent to
  932.                  specifying `--xxMMAACCFFRROOGGWWUUTT'.
  933.  
  934.             The options shown  as  --_f_l_a_g_s  constrain  the  report
  935.             without requiring option arguments:
  936.  
  937.              --aa  Show  data for all users (the default is to show
  938.                  data only for the user executing `ccvvss hhiissttoorryy').
  939.  
  940.              --ll  Show last modification only.
  941.  
  942.              --ww  Show  only  the  records  for modifications done
  943.                  from  the  same  working  directory  where  `ccvvss
  944.                  hhiissttoorryy' is executing.
  945.  
  946.             The  options  shown  as  --_o_p_t_i_o_n_s  _a_r_g_s constrain the
  947.             report based on an argument:
  948.  
  949.              --bb _s_t_r
  950.                  Show data back to a record containing the string
  951.                  _s_t_r in either the module name, the file name, or
  952.                  the repository path.
  953.  
  954.              --DD _d_a_t_e
  955.                  Show data since _d_a_t_e.
  956.  
  957.              --pp _r_e_p_o_s_i_t_o_r_y
  958.                  Show data for  a  particular  source  repository
  959.                  (you  can specify several --pp options on the same
  960.                  command line).
  961.  
  962.              --rr _r_e_v
  963.                  Show records referring to  revisions  since  the
  964.                  revision  or tag named _r_e_v appears in individual
  965.                  RCS files.  Each RCS file is  searched  for  the
  966.                  revision or tag.
  967.  
  968.              --tt _t_a_g
  969.                  Show records since tag _t_a_g was last added to the
  970.                  the history file.  This differs from the --rr flag
  971.                  above  in  that  it reads only the history file,
  972.                  not the RCS files, and is much faster.
  973.  
  974.              --uu _n_a_m_e
  975.                  Show records for user _n_a_m_e.
  976.  
  977.  
  978.        iimmppoorrtt [--_o_p_t_i_o_n_s] _r_e_p_o_s_i_t_o_r_y _v_e_n_d_o_r_t_a_g _r_e_l_e_a_s_e_t_a_g...
  979.               _R_e_q_u_i_r_e_s_: Repository,  source  distribution  direc-
  980.               tory.
  981.               _C_h_a_n_g_e_s_: repository.
  982.               Use  `ccvvss  iimmppoorrtt'  to incorporate an entire source
  983.               distribution from an outside source (e.g., a source
  984.               vendor) into your source repository directory.  You
  985.  
  986.  
  987.  
  988.                              03:05:16                          15
  989.  
  990.  
  991.  
  992.  
  993.  
  994. CVS(1)                                                     CVS(1)
  995.  
  996.  
  997.               can use this command both for initial creation of a
  998.               repository, and for wholesale updates to the module
  999.               form the outside source.
  1000.  
  1001.               The _r_e_p_o_s_i_t_o_r_y argument gives a directory name  (or
  1002.               a path to a directory) under the CVS root directory
  1003.               for repositories; if the directory did  not  exist,
  1004.               iimmppoorrtt creates it.
  1005.  
  1006.               When  you use iimmppoorrtt for updates to source that has
  1007.               been modified in your source  repository  (since  a
  1008.               prior iimmppoorrtt), it will notify you of any files that
  1009.               conflict in the two branches  of  development;  use
  1010.               `ccvvss  cchheecckkoouutt --jj' to reconcile the differences, as
  1011.               iimmppoorrtt instructs you to do.
  1012.  
  1013.               By default, certain file names are  ignored  during
  1014.               `ccvvss iimmppoorrtt': names associated with CVS administra-
  1015.               tion, or with other common source control  systems;
  1016.               common names for patch files, object files, archive
  1017.               files, and editor backup  files;  and  other  names
  1018.               that  are  usually artifacts of assorted utilities.
  1019.               Currently,  the  default  list  of  ignored   files
  1020.               includes files matching these names:
  1021.  
  1022.                         RRCCSSLLOOGG  RRCCSS  SSCCCCSS
  1023.                         CCVVSS**  ccvvsslloogg..**
  1024.                         ttaaggss  TTAAGGSS
  1025.                         ..mmaakkee..ssttaattee  ..nnssee__ddeeppiinnffoo
  1026.                         **~~  ##**  ..##**  ,,**
  1027.                         **..oolldd  **..bbaakk  **..oorriigg  **..rreejj  ..ddeell--**
  1028.                         **..aa  **..oo  **..ZZ  **..eellcc  **..llnn  ccoorree
  1029.  
  1030.               The  outside  source  is saved in a first-level RCS
  1031.               branch, by default `11..11..11'.  Updates are leaves  of
  1032.               this  branch;  for  example,  files  from the first
  1033.               imported collection  of  source  will  be  revision
  1034.               `11..11..11..11',  then  files  from  the  first  imported
  1035.               update will be revision `11..11..11..22', and so on.
  1036.  
  1037.               At least three arguments are required.   _r_e_p_o_s_i_t_o_r_y
  1038.               is  needed  to  identify  the collection of source.
  1039.               _v_e_n_d_o_r_t_a_g is a tag for the entire branch (e.g., for
  1040.               `11..11..11').   You  must  also  specify  at  least one
  1041.               _r_e_l_e_a_s_e_t_a_g to identify the files at the leaves cre-
  1042.               ated each time you execute `ccvvss iimmppoorrtt'.
  1043.  
  1044.               Three  of  the  standard  ccvvss  command  options are
  1045.               available: --QQ, --qq, and --mm _m_e_s_s_a_g_e.  If you  do  not
  1046.               specify  a  logging message with --mm, your editor is
  1047.               invoked (as with ccoommmmiitt) to allow you to enter one.
  1048.  
  1049.               There are two additional special options.
  1050.  
  1051.  
  1052.  
  1053.  
  1054.                              03:05:16                          16
  1055.  
  1056.  
  1057.  
  1058.  
  1059.  
  1060. CVS(1)                                                     CVS(1)
  1061.  
  1062.  
  1063.               Use  `--bb  _b_r_a_n_c_h'  to  specify a first-level branch
  1064.               other than `11..11..11'.
  1065.  
  1066.               Use `--II _n_a_m_e' to specify file names that should  be
  1067.               ignored  during  iimmppoorrtt.   You  can use this option
  1068.               repeatedly.  To avoid ignoring  any  files  at  all
  1069.               (even those ignored by default), specify `--II !!'.
  1070.  
  1071.        lloogg [--ll] _r_l_o_g_-_o_p_t_i_o_n_s _[_f_i_l_e_s...]
  1072.               _R_e_q_u_i_r_e_s_: repository, working directory.
  1073.               _C_h_a_n_g_e_s_: nothing.
  1074.               _S_y_n_o_n_y_m_: rrlloogg
  1075.               Display log information for _f_i_l_e_s.  `ccvvss lloogg' calls
  1076.               the RCS utility rrlloogg; all the options described  in
  1077.               rrlloogg(11)  are available.  Among the more useful rrlloogg
  1078.               options are --hh to display only the header  (includ-
  1079.               ing  tag definitions, but omitting most of the full
  1080.               log); --rr to select logs on particular revisions  or
  1081.               ranges  of  revisions;  and --dd to select particular
  1082.               dates or date ranges.  See rrlloogg(11) for full  expla-
  1083.               nations.   This  command  is  recursive by default,
  1084.               unless the --ll option is specified.
  1085.  
  1086.        rrddiiffff [--_f_l_a_g_s] [--VV _v_n] [--rr _t|--DD _d [--rr _t_2|--DD _d_2]]
  1087.               _m_o_d_u_l_e_s_._._.
  1088.               _R_e_q_u_i_r_e_s_: repository.
  1089.               _C_h_a_n_g_e_s_: nothing.
  1090.               _S_y_n_o_n_y_m_: ppaattcchh
  1091.               Builds  a  Larry  Wall format ppaattcchh(11) file between
  1092.               two releases, that can be  fed  directly  into  the
  1093.               ppaattcchh  program  to  bring an old release up-to-date
  1094.               with the new release.  (This is one of the few  ccvvss
  1095.               commands  that  operates  directly from the reposi-
  1096.               tory, and doesn't require a prior  cchheecckkoouutt.)   The
  1097.               diff  output is sent to the standard output device.
  1098.               You can specify  (using  the  standard  --rr  and  --DD
  1099.               options) any combination of one or two revisions or
  1100.               dates.  If only one revision or date is  specified,
  1101.               the  patch  file  reflects differences between that
  1102.               revision or date and the current ``head'' revisions
  1103.               in the RCS file.
  1104.  
  1105.               Note  that if the software release affected is con-
  1106.               tained in more than one directory, then it  may  be
  1107.               necessary  to  specify  the  --pp option to the ppaattcchh
  1108.               command when patching  the  old  sources,  so  that
  1109.               ppaattcchh is able to find the files that are located in
  1110.               other directories.
  1111.  
  1112.               If you use the  option  --VV  _v_n,  RCS  keywords  are
  1113.               expanded according to the rules current in RCS ver-
  1114.               sion _v_n (the expansion format changed with RCS ver-
  1115.               sion 5).
  1116.  
  1117.  
  1118.  
  1119.  
  1120.                              03:05:16                          17
  1121.  
  1122.  
  1123.  
  1124.  
  1125.  
  1126. CVS(1)                                                     CVS(1)
  1127.  
  1128.  
  1129.               The  standard  option  _f_l_a_g_s --ff, --ll, --QQ, and --qq are
  1130.               available with this command.  There are  also  sev-
  1131.               eral special options flags:
  1132.  
  1133.               If  you  use the --ss option, no patch output is pro-
  1134.               duced.  Instead, a summary of the changed or  added
  1135.               files between the two releases is sent to the stan-
  1136.               dard output device.  This  is  useful  for  finding
  1137.               out,  for example, which files have changed between
  1138.               two dates or revisions.
  1139.  
  1140.               If you use the --tt option, a diff  of  the  top  two
  1141.               revisions  is  sent  to the standard output device.
  1142.               This is most useful for seeing what the last change
  1143.               to a file was.
  1144.  
  1145.               If you use the --uu option, the patch output uses the
  1146.               newer ``unidiff'' format for context diffs.
  1147.  
  1148.               You can use --cc to explicitly specify the `ddiiffff  --cc'
  1149.               form  of  context  diffs (which is the default), if
  1150.               you like.
  1151.  
  1152.        rreelleeaassee [--ddQQqq] _m_o_d_u_l_e_s...
  1153.               _R_e_q_u_i_r_e_s_: Working directory.
  1154.               _C_h_a_n_g_e_s_: Working directory, history log.
  1155.               This command is meant to safely cancel  the  effect
  1156.               of  `ccvvss  cchheecckkoouutt''..' Since ccvvss doesn't lock files,
  1157.               it isn't strictly necessary to  use  this  command.
  1158.               You  can  always  simply delete your working direc-
  1159.               tory, if you like; but you risk losing changes  you
  1160.               may  have  forgotten, and you leave no trace in the
  1161.               ccvvss history file that you've abandoned your  check-
  1162.               out.
  1163.  
  1164.               Use  `ccvvss  rreelleeaassee'  to avoid these problems.  This
  1165.               command checks that  no  un-committed  changes  are
  1166.               present; that you are executing it from immediately
  1167.               above, or inside, a ccvvss working directory; and that
  1168.               the  repository recorded for your files is the same
  1169.               as the repository defined in the module database.
  1170.  
  1171.               If all these conditions  are  true,  `ccvvss  rreelleeaassee'
  1172.               leaves a record of its execution (attesting to your
  1173.               intentionally abandoning your checkout) in the  ccvvss
  1174.               history log.
  1175.  
  1176.               You  can use the --dd flag to request that your work-
  1177.               ing copies of the source files be  deleted  if  the
  1178.               rreelleeaassee succeeds.
  1179.  
  1180.        rreemmoovvee [--llRR] [_f_i_l_e_s_._._.]
  1181.               _R_e_q_u_i_r_e_s_: Working directory.
  1182.               _C_h_a_n_g_e_s_: Working directory.
  1183.  
  1184.  
  1185.  
  1186.                              03:05:16                          18
  1187.  
  1188.  
  1189.  
  1190.  
  1191.  
  1192. CVS(1)                                                     CVS(1)
  1193.  
  1194.  
  1195.               _S_y_n_o_n_y_m_s_: rrmm, ddeelleettee
  1196.               Use this command to declare that you wish to remove
  1197.               _f_i_l_e_s from the source repository.   Like  most  ccvvss
  1198.               commands, `ccvvss rreemmoovvee' works on files in your work-
  1199.               ing directory, not directly on the repository.   As
  1200.               a  safeguard, it also requires that you first erase
  1201.               the specified files from your working directory.
  1202.  
  1203.               The files are not actually removed until you  apply
  1204.               your changes to the repository with ccoommmmiitt; at that
  1205.               point, the corresponding RCS files  in  the  source
  1206.               repository  are  _m_o_v_e_d  into  the `AAttttiicc' directory
  1207.               (also within the source repository).
  1208.  
  1209.               This command is recursive by default, scheduing all
  1210.               physically  removed files that it finds for removal
  1211.               by the next ccoommmmiitt.  Use the  --ll  option  to  avoid
  1212.               this  recursion,  or just specify that actual files
  1213.               that you wish remove to consider.
  1214.  
  1215.        rrttaagg [--ffaallnnRRQQqq]  [--bb]  [--dd]  [--rr  _t_a_g  |  --DD  _d_a_t_e]  _s_y_m_-
  1216.               _b_o_l_i_c___t_a_g _m_o_d_u_l_e_s_._._.
  1217.               _R_e_q_u_i_r_e_s_: repository.
  1218.               _C_h_a_n_g_e_s_: repository.
  1219.               _S_y_n_o_n_y_m_: rrffrreeeezzee
  1220.               You can use this command to assign symbolic tags to
  1221.               particular, explicitly specified source versions in
  1222.               the repository.  `ccvvss rrttaagg' works directly  on  the
  1223.               repository  contents  (and requires no prior cchheecckk--
  1224.               oouutt).  Use `ccvvss ttaagg' instead, to base the selection
  1225.               of  versions to tag on the contents of your working
  1226.               directory.
  1227.  
  1228.               In general, tags (often the symbolic names of soft-
  1229.               ware  distributions) should not be removed, but the
  1230.               --dd option is available as a means  to  remove  com-
  1231.               pletely  obsolete  symbolic  names if necessary (as
  1232.               might be the case for an Alpha release, say).
  1233.  
  1234.               The --bb option  makes  the  tag  a  ``branch''  tag,
  1235.               allowing concurrent, isolated development.  This is
  1236.               most useful for creating a patch  to  a  previously
  1237.               released software distribution.
  1238.  
  1239.               You  can  use the standard --rr and --DD options to tag
  1240.               only those files that  already  contain  a  certain
  1241.               tag.   This  method  would be used to rename a tag:
  1242.               tag only the files identified by the old tag,  then
  1243.               delete  the old tag, leaving the new tag on exactly
  1244.               the same files as the old tag.
  1245.  
  1246.               rrttaagg executes recursively by default,  tagging  all
  1247.               subdirectories  of _m_o_d_u_l_e_s you specify in the argu-
  1248.               ment.  You can restrict its operation to  top-level
  1249.  
  1250.  
  1251.  
  1252.                              03:05:16                          19
  1253.  
  1254.  
  1255.  
  1256.  
  1257.  
  1258. CVS(1)                                                     CVS(1)
  1259.  
  1260.  
  1261.               directories with the standard --ll option; or you can
  1262.               explicitly request recursion with --RR.
  1263.  
  1264.               The modules database can specify a program to  exe-
  1265.               cute  whenever a tag is specified; a typical use is
  1266.               to send electronic mail to a  group  of  interested
  1267.               parties.   If  you want to bypass that program, use
  1268.               the standard --nn option.
  1269.  
  1270.               The standard options --QQ and --qq are  also  available
  1271.               with this command.
  1272.  
  1273.               Use  the --aa option to have rrttaagg look in the `AAttttiicc'
  1274.               for removed files that contin  the  specified  tag.
  1275.               The tag is removed from these files, which makes it
  1276.               convenient to re-use a symbolic tag as  development
  1277.               continues (and files get removed from the up-coming
  1278.               distribution).
  1279.  
  1280.        ssttaattuuss [--llRR] [--vv] [_f_i_l_e_s...]
  1281.               _R_e_q_u_i_r_e_s_: working directory, repository.
  1282.               _C_h_a_n_g_e_s_: nothing.
  1283.               Display a brief report on  the  current  status  of
  1284.               _f_i_l_e_s   with  respect  to  the  source  repository,
  1285.               including  any  ``sticky''  tags,  dates,   or   --kk
  1286.               options.   (``Sticky''  options  will  restrict how
  1287.               `ccvvss uuppddaattee' operates until you reset them; see the
  1288.               description of `ccvvss uuppddaattee --AA......'.)
  1289.  
  1290.               You  can  also  use  this command to anticipate the
  1291.               potential impact of a `ccvvss uuppddaattee' on your  working
  1292.               source  directory.  If you do not specify any _f_i_l_e_s
  1293.               explicitly, reports are shown for  all  files  that
  1294.               ccvvss  has placed in your working directory.  You can
  1295.               limit the scope  of  this  search  to  the  current
  1296.               directory  itself (not its subdirectories) with the
  1297.               standard --ll option  flag;  or  you  can  explicitly
  1298.               request   recursive  status  reports  with  the  --RR
  1299.               option.
  1300.  
  1301.               The --vv option causes the symbolic tags for the  RCS
  1302.               file to be displayed as well.
  1303.  
  1304.        ttaagg [--llQQqqRR] [--bb] [--dd] _s_y_m_b_o_l_i_c___t_a_g [_f_i_l_e_s...]
  1305.               _R_e_q_u_i_r_e_s_: working directory, repository.
  1306.               _C_h_a_n_g_e_s_: repository.
  1307.               _S_y_n_o_n_y_m_: ffrreeeezzee
  1308.               Use  this  command  to  assign symbolic tags to the
  1309.               nearest  repository  versions   to   your   working
  1310.               sources.   The  tags are applied immediately to the
  1311.               repository, as with rrttaagg, but the versions are sup-
  1312.               plied implicitly by the ccvvss records of your working
  1313.               files' history rather than applied explicitly.
  1314.  
  1315.  
  1316.  
  1317.  
  1318.                              03:05:16                          20
  1319.  
  1320.  
  1321.  
  1322.  
  1323.  
  1324. CVS(1)                                                     CVS(1)
  1325.  
  1326.  
  1327.               One use for tags is to record a ``snapshot'' of the
  1328.               current  sources when the software freeze date of a
  1329.               project arrives.   As  bugs  are  fixed  after  the
  1330.               freeze date, only those changed sources that are to
  1331.               be part of the release need be re-tagged.
  1332.  
  1333.               The symbolic tags are meant to  permanently  record
  1334.               which  revisions of which files were used in creat-
  1335.               ing a  software  distribution.   The  cchheecckkoouutt  and
  1336.               uuppddaattee  commands allow you to extract an exact copy
  1337.               of a tagged release at  any  time  in  the  future,
  1338.               regardless  of  whether  files  have  been changed,
  1339.               added, or removed since the release was tagged.
  1340.  
  1341.               If you use `ccvvss ttaagg --dd _s_y_m_b_o_l_i_c___t_a_g......',  the  sym-
  1342.               bolic  tag  you specify is _d_e_l_e_t_e_d instead of being
  1343.               added.  _W_a_r_n_i_n_g: Be very  certain  of  your  ground
  1344.               before  you  delete  a  tag; doing this effectively
  1345.               discards some  historical  information,  which  may
  1346.               later turn out to have been valuable.
  1347.  
  1348.               The  --bb  option  makes  the  tag  a ``branch'' tag,
  1349.               allowing concurrent, isolated development.  This is
  1350.               most  useful  for  creating a patch to a previously
  1351.               released software distribution.
  1352.  
  1353.               Normally, ttaagg executes recursively  through  subdi-
  1354.               rectories;  you can prevent this by using the stan-
  1355.               dard --ll option, or specify the recursion explicitly
  1356.               by using --RR.
  1357.  
  1358.        uuppddaattee [--AAddffllPPppQQqqRR] [--dd] [--rr _t_a_g|--DD _d_a_t_e] _f_i_l_e_s_._._.
  1359.               _R_e_q_u_i_r_e_s_: repository, working directory.
  1360.               _C_h_a_n_g_e_s_: working directory.
  1361.               After  you've  run  cchheecckkoouutt to create your private
  1362.               copy of source from the  common  repository,  other
  1363.               developers   will  continue  changing  the  central
  1364.               source.  From time to time, when it  is  convenient
  1365.               in your development process, you can use the uuppddaattee
  1366.               command from within your working directory to  rec-
  1367.               oncile your work with any revisions applied to  the
  1368.               source  repository  since  your  last  cchheecckkoouutt  or
  1369.               uuppddaattee.
  1370.  
  1371.               uuppddaattee keeps you informed of its progress by print-
  1372.               ing a line for each file, prefaced with one of  the
  1373.               characters  `UU AA RR MM CC ??' to indicate the status of
  1374.               the file:
  1375.  
  1376.        UU _f_i_l_e    The file was brought _u_p _t_o _d_a_t_e with respect  to
  1377.                  the  repository.  This is done for any file that
  1378.                  exists in the repository but not in your source,
  1379.                  and  for  files that you haven't changed but are
  1380.                  not the most recent versions  available  in  the
  1381.  
  1382.  
  1383.  
  1384.                              03:05:16                          21
  1385.  
  1386.  
  1387.  
  1388.  
  1389.  
  1390. CVS(1)                                                     CVS(1)
  1391.  
  1392.  
  1393.                  repository.
  1394.  
  1395.        AA _f_i_l_e    The  file has been _a_d_d_e_d to your private copy of
  1396.                  the sources, and will be added to the RCS source
  1397.                  repository  when  you  run  `ccvvss  ccoommmmiitt' on the
  1398.                  file.  This is a reminder to you that  the  file
  1399.                  needs to be committed.
  1400.  
  1401.        RR _f_i_l_e    The file has been _r_e_m_o_v_e_d from your private copy
  1402.                  of the sources, and will be removed from the RCS
  1403.                  source  repository  when you run `ccvvss ccoommmmiitt' on
  1404.                  the file.  This is a reminder to  you  that  the
  1405.                  file needs to be committed.
  1406.  
  1407.        MM _f_i_l_e    The  file is _m_o_d_i_f_i_e_d in your working directory.
  1408.                  `MM' can indicate one of two states  for  a  file
  1409.                  you're  working on: either there were no modifi-
  1410.                  cations to the same file in the  repository,  so
  1411.                  that  your  file  remains as you last saw it; or
  1412.                  there were modifications in  the  repository  as
  1413.                  well  as in your copy, but they were _m_e_r_g_e_d suc-
  1414.                  cessfully, without  conflict,  in  your  working
  1415.                  directory.
  1416.  
  1417.        CC _f_i_l_e    A  _c_o_n_f_l_i_c_t  was  detected while trying to merge
  1418.                  your changes  to  _f_i_l_e  with  changes  from  the
  1419.                  source repository.  _f_i_l_e (the copy in your work-
  1420.                  ing  directory)  is  now  the  output   of   the
  1421.                  rrccssmmeerrggee(11)  command  on  the  two  versions; an
  1422.                  unmodified copy of your file  is  also  in  your
  1423.                  working     directory,     with     the     name
  1424.                  `..##_f_i_l_e.._v_e_r_s_i_o_n', where _v_e_r_s_i_o_n is the RCS revi-
  1425.                  sion  that  your  modified  file  started  from.
  1426.                  (Note  that  some  systems  automatically  purge
  1427.                  files  that  begin  with   `..##' if they have not
  1428.                  been accessed for a few days.  If you intend  to
  1429.                  keep  a copy of your original file, it is a very
  1430.                  good idea to rename it.)
  1431.  
  1432.        ?? _f_i_l_e    _f_i_l_e is in your working directory, but does  not
  1433.                  correspond to anything in the source repository,
  1434.                  and is not in the  list  of  files  for  ccvvss  to
  1435.                  ignore (see the description of the --II option).
  1436.  
  1437.  
  1438.             Use the --AA option to reset any sticky tags, dates, or
  1439.             --kk options.  (If you get a working copy of a file  by
  1440.             using one of the --rr, --DD, or --kk options, ccvvss remembers
  1441.             the corresponding tag, date, or _k_f_l_a_g  and  continues
  1442.             using it on future updates; use the --AA option to make
  1443.             ccvvss forget these  specifications,  and  retrieve  the
  1444.             ``head'' version of the file).
  1445.  
  1446.             The  --jj_b_r_a_n_c_h  option merges the changes made between
  1447.  
  1448.  
  1449.  
  1450.                              03:05:16                          22
  1451.  
  1452.  
  1453.  
  1454.  
  1455.  
  1456. CVS(1)                                                     CVS(1)
  1457.  
  1458.  
  1459.             the resulting revision and the revision  that  it  is
  1460.             based  on  (e.g.,  if the tag refers to a branch, ccvvss
  1461.             will merge all changes made in that branch into  your
  1462.             working file).
  1463.  
  1464.             With  two  --jj  options, ccvvss will merge in the changes
  1465.             between the two respective revisions.   This  can  be
  1466.             used  to ``remove'' a certain delta from your working
  1467.             file.  E.g., If the file foo.c is based  on  revision
  1468.             1.6 and I want to remove the changes made between 1.3
  1469.             and 1.5, I might do:
  1470.  
  1471.                       eexxaammppllee%% ccvvss uuppddaattee --jj11..55 --jj11..33 ffoooo..cc   ## nnoottee tthhee oorrddeerr......
  1472.  
  1473.             In addition, each --jj option can contain  on  optional
  1474.             date  specification  which,  when used with branches,
  1475.             can limit the chosen revision to one  within  a  spe-
  1476.             cific  date.  An optional date is specified by adding
  1477.             a colon (:) to the tag.
  1478.  
  1479.                       --jjSSyymmbboolliicc__TTaagg::DDaattee__SSppeecciiffiieerr
  1480.  
  1481.             Use the --dd option  to  create  any  directories  that
  1482.             exist  in  the repository if they're missing from the
  1483.             working directory.  (Normally, update  acts  only  on
  1484.             directories  and  files that were already enrolled in
  1485.             your working directory.)  This is useful for updating
  1486.             directories that were created in the repository since
  1487.             the initial cchheecckkoouutt; but it has an unfortunate  side
  1488.             effect.  If you deliberately avoided certain directo-
  1489.             ries in the repository when you created your  working
  1490.             directory  (either through use of a module name or by
  1491.             listing explicitly  the  files  and  directories  you
  1492.             wanted  on  the  command line), then updating with --dd
  1493.             will create those directories, which may not be  what
  1494.             you want.
  1495.  
  1496.             Use  --II  _n_a_m_e  to ignore files whose names match _n_a_m_e
  1497.             (in your working directory) during the  update.   You
  1498.             can  specify --II more than once on the command line to
  1499.             specify several files to ignore.  By default,  uuppddaattee
  1500.             ignores files whose names match any of the following:
  1501.  
  1502.                       RRCCSSLLOOGG  RRCCSS  SSCCCCSS
  1503.                       CCVVSS**  ccvvsslloogg..**
  1504.                       ttaaggss  TTAAGGSS
  1505.                       ..mmaakkee..ssttaattee  ..nnssee__ddeeppiinnffoo
  1506.                       **~~  ##**  ..##**  ,,**
  1507.                       **..oolldd  **..bbaakk  **..oorriigg  **..rreejj  ..ddeell--**
  1508.                       **..aa  **..oo  **..ZZ  **..eellcc  **..llnn  ccoorree
  1509.  
  1510.             Use `--II !!' to avoid ignoring any files at all.
  1511.  
  1512.             The standard ccvvss command options --ff, --kk, --ll, --PP,  --pp,
  1513.  
  1514.  
  1515.  
  1516.                              03:05:16                          23
  1517.  
  1518.  
  1519.  
  1520.  
  1521.  
  1522. CVS(1)                                                     CVS(1)
  1523.  
  1524.  
  1525.             --QQ, --qq, and --rr are also available with uuppddaattee.
  1526.  
  1527. FFIILLEESS
  1528.        For more detailed information on ccvvss supporting files, see
  1529.        ccvvss(55).
  1530.  
  1531.        _F_i_l_e_s _i_n _w_o_r_k_i_n_g _d_i_r_e_c_t_o_r_i_e_s_:
  1532.  
  1533.        CVS    A directory of ccvvss administrative  files.   _D_o  _n_o_t
  1534.               _d_e_l_e_t_e_.
  1535.  
  1536.        CVS/Entries
  1537.               List and status of files in your working directory.
  1538.  
  1539.        CVS/Entries.Backup
  1540.               A backup of `CCVVSS//EEnnttrriieess'.
  1541.  
  1542.        CVS/Entries.Static
  1543.               Flag: do not add more entries on `ccvvss uuppddaattee'.
  1544.  
  1545.        CVS/Repository
  1546.               Pathname to  the  corresponding  directory  in  the
  1547.               source repository.
  1548.  
  1549.        CVS/Tag
  1550.               Contains  the  per-directory ``sticky'' tag or date
  1551.               information.  This file is created/updated when you
  1552.               specify  --rr  or  --DD  to the cchheecckkoouutt or uuppddaattee com-
  1553.               mands, and no files are specified.
  1554.  
  1555.        CVS/Checkin.prog
  1556.               Name of program to run on `ccvvss ccoommmmiitt'.
  1557.  
  1558.        CVS/Update.prog
  1559.               Name of program to run on `ccvvss uuppddaattee'.
  1560.  
  1561.        _F_i_l_e_s _i_n _s_o_u_r_c_e _r_e_p_o_s_i_t_o_r_i_e_s_:
  1562.  
  1563.        $CVSROOT/CVSROOT
  1564.               Directory of global administrative files for repos-
  1565.               itory.
  1566.  
  1567.        CVSROOT/commitinfo,v
  1568.               Records   programs   for   filtering  `ccvvss  ccoommmmiitt'
  1569.               requests.
  1570.  
  1571.        CVSROOT/history
  1572.               Log file of ccvvss transactions.
  1573.  
  1574.        CVSROOT/modules,v
  1575.               Definitions for modules in this repository.
  1576.  
  1577.        CVSROOT/loginfo,v
  1578.               Records  programs  for  piping  `ccvvss  ccoommmmiitt'   log
  1579.  
  1580.  
  1581.  
  1582.                              03:05:16                          24
  1583.  
  1584.  
  1585.  
  1586.  
  1587.  
  1588. CVS(1)                                                     CVS(1)
  1589.  
  1590.  
  1591.               entries.
  1592.  
  1593.        CVSROOT/rcsinfo,v
  1594.               Records  pathnames  to templates used dueing a `ccvvss
  1595.               ccoommmmiitt' operation.
  1596.  
  1597.        CVSROOT/editinfo,v
  1598.               Records  programs   for   editing/validating   `ccvvss
  1599.               ccoommmmiitt' log entries.
  1600.  
  1601.        Attic  Directory for removed source files.
  1602.  
  1603.        #cvs.lock
  1604.               A  lock  directory created by ccvvss when doing sensi-
  1605.               tive changes to the RCS source repository.
  1606.  
  1607.        #cvs.tfl._p_i_d
  1608.               Temporary lock file for repository.
  1609.  
  1610.        #cvs.rfl._p_i_d
  1611.               A read lock.
  1612.  
  1613.        #cvs.wfl._p_i_d
  1614.               A write lock.
  1615.  
  1616. EENNVVIIRROONNMMEENNTT VVAARRIIAABBLLEESS
  1617.        CVSROOT
  1618.               Should contain the full pathname to the root of the
  1619.               ccvvss  source  repository  (where  the  RCS files are
  1620.               kept).  This information must be available  to  ccvvss
  1621.               for  most  commands  to  execute; if CVSROOT is not
  1622.               set, or if you wish to override it for one  invoca-
  1623.               tion,  you  can supply it on the command line: `ccvvss
  1624.               --dd _c_v_s_r_o_o_t _c_v_s___c_o_m_m_a_n_d......' You may not need to  set
  1625.               CVSROOT  if your ccvvss binary has the right path com-
  1626.               piled in; use `ccvvss --vv' to display  all  compiled-in
  1627.               paths.
  1628.  
  1629.        CVSREAD
  1630.               If  this  is set, cchheecckkoouutt and uuppddaattee will try hard
  1631.               to make the files in your working  directory  read-
  1632.               only.   When  this is not set, the default behavior
  1633.               is to permit modification of your working files.
  1634.  
  1635.        RCSBIN Specifies the full pathname where to find RCS  pro-
  1636.               grams, such as ccoo(11) and ccii(11).  If not set, a com-
  1637.               piled-in value is used; see the display  from  `ccvvss
  1638.               --vv'.
  1639.  
  1640.        EDITOR Specifies the program to use for recording log mes-
  1641.               sages during ccoommmmiitt.  If not set,  the  default  is
  1642.               //uussrr//uuccbb//vvii.
  1643.  
  1644.  
  1645.  
  1646.  
  1647.  
  1648.                              03:05:16                          25
  1649.  
  1650.  
  1651.  
  1652.  
  1653.  
  1654. CVS(1)                                                     CVS(1)
  1655.  
  1656.  
  1657. AAUUTTHHOORRSS
  1658.        Dick Grune
  1659.               Original  author  of  the  ccvvss shell script version
  1660.               posted to ccoommpp..ssoouurrcceess..uunniixx in the volume6  release
  1661.               of  December,  1986.  Credited with much of the ccvvss
  1662.               conflict resolution algorithms.
  1663.  
  1664.        Brian Berliner
  1665.               Coder and designer of the  ccvvss  program  itself  in
  1666.               April,  1989,  based  on  the original work done by
  1667.               Dick.
  1668.  
  1669.        Jeff Polk
  1670.               Helped Brian with the design of the ccvvss module  and
  1671.               vendor  branch support and author of the cchheecckkiinn(11)
  1672.               shell script (the ancestor of `ccvvss iimmppoorrtt').
  1673.  
  1674. SSEEEE AALLSSOO
  1675.        ccii(11),  ccoo(11),  ccvvss(55),  ddiiffff(11),  ggrreepp(11),  mmkkmmoodduulleess(11),
  1676.        ppaattcchh(11), rrccss(11), rrccssddiiffff(11), rrccssmmeerrggee(11), rrlloogg(11), rrmm(11),
  1677.        ssoorrtt(11).
  1678.  
  1679.  
  1680.  
  1681.  
  1682.  
  1683.  
  1684.  
  1685.  
  1686.  
  1687.  
  1688.  
  1689.  
  1690.  
  1691.  
  1692.  
  1693.  
  1694.  
  1695.  
  1696.  
  1697.  
  1698.  
  1699.  
  1700.  
  1701.  
  1702.  
  1703.  
  1704.  
  1705.  
  1706.  
  1707.  
  1708.  
  1709.  
  1710.  
  1711.  
  1712.  
  1713.  
  1714.                              03:05:16                          26
  1715.  
  1716.  
  1717.